/* ----------------------------------------------------- */
h2 {
  font-size: 25px !important;
  /* Heading ka size */
  font-family: "Open Sans", Poppins, sans-serif !important;
  /* Font family */
  font-weight: bold !important;
  /* Font weight */
}

h6 {
  font-size: 35px !important;
  /* Heading ka size */
  font-family: "Open Sans", Poppins, sans-serif !important;
  /* Font family */
  font-weight: bold !important;
  /* Font weight */
}

/* Styling for the header cart- Whatsappp  container */
.header-cart {
  padding: 0 0 0 30px;
  /* Adds left padding for positioning */

}

/* WhatsApp icon styling */
.WhatsAppIcon {
  width: 45px;
  /* Sets a fixed width for the clickable area */
  height: 70px;
  /* Sets a fixed height for the clickable area */
  display: block;
  /* Makes the anchor tag a block element */
  border-radius: 0 0 30px 30px;
  /* Adds rounded corners at the bottom */
  position: relative;
  /* Allows for positional adjustments */
  top: 15px;
  /* Moves the anchor tag 10px downward */
  cursor: pointer;
  /* Indicates it's clickable */
}

/* Adding the WhatsApp link via CSS */
.WhatsAppIcon::before {
  content: '';
  /* Placeholder for the pseudo-element */
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.WhatsAppIcon:hover {
  opacity: 0.9;
  /* Slightly reduces opacity on hover */
}

/* WhatsApp icon image styling */
.WhatsAppIcon img {
  width: 40px;
  /* Sets the width of the WhatsApp icon */
  height: 40px;
  /* Sets the height of the WhatsApp icon */
  margin-left: 10px;
  /* Adds left margin to position the icon */
  cursor: pointer;
  /* Changes cursor to pointer on hover */
  transition: transform 0.3s;
  /* Adds a smooth zoom transition */
}

/* Hover effect for the WhatsApp icon */
.WhatsAppIcon img:hover {
  transform: scale(1.2);
  /* Scales up the icon by 20% on hover */
}

/* ----------------------------------------------------------- */

/* Partner Section */
.mfg-partner-section {
  text-align: center;
  background-color: #ffffff;
  padding: 1px 0;
}

/* Headline */
.mfg-partner-heading {
  font-size: 45px;
  color: #000000;
  font-weight: 800;
  margin-bottom: 1px;
}

/* Slider Container */
.mfg-partner-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 250px;
  background-color: #ffffff;
}

/* Slide Track */
.mfg-slide-track {
  display: flex;
  width: calc(250px * 24);
  /* Double the number of slides to make seamless loop */
  animation: mfg-slide 100s linear infinite;
}

/* Individual Slide */
.mfg-slide {
  width: 250px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mfg-slide img {
  width: 80%;
  height: 80%;
  object-fit: contain;
  transition: transform 0.5s;
}

/* Hover Effect */
.mfg-slide img:hover {
  transform: scale(1.1);
}

/* Animation */
@keyframes mfg-slide {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
  .mfg-partner-slider {
    height: 100px;
  }

  .mfg-slide {
    width: 150px;
  }

  .mfg-partner-heading {
    font-size: 20px;
  }
}

/* }---------------------------------------------------------- */

/* FAQ Container Styling */
/* FAQ Section Styles */
.faq-section {
  padding: 80px 20px;
  background-color: var(--bg-start, #f4f6f9);
  font-family: 'Poppins', sans-serif;
  color: var(--text-color, #333);
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-title {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  color: var(--heading-color, #1a1a1a);
  margin-bottom: 60px;
  position: relative;
}

.faq-title::after {
  content: '';
  width: 80px;
  height: 4px;
  background: var(--primary-color, #4a90e2);
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.faq-item.active {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.faq-question {
  width: 100%;
  padding: 20px 25px;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  color: var(--primary-color, #4a90e2);
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: rgba(74, 144, 226, 0.05);
}

.faq-question .icon {
  font-size: 1.5rem;
  color: var(--secondary-color, #50e3c2);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question .icon {
  transform: rotate(45deg);
  color: var(--primary-color, #4a90e2);
}

.faq-answer {
  background-color: #f9fbfd;
  max-height: 0;
  padding: 0 25px;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.faq-item.active .faq-answer {
  padding: 11px;
}

.faq-answer p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-color, #333);
  margin: 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .faq-title {
    font-size: 2.2rem;
    margin-bottom: 40px;
  }

  .faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .faq-question .icon {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .faq-section {
    padding: 60px 15px;
  }

  .faq-title {
    font-size: 1.8rem;
  }

  .faq-question {
    font-size: 0.95rem;
    padding: 12px 18px;
  }
}

/* ------------------------------------------------ */
/* footer copy right section/ */
.Textlink {
  color: rgb(255, 255, 255);
  text-decoration: none;
  color: inherit;
  /* Inherit default text color */
  text-decoration: none;
  /* Remove underline */
  font-weight: normal;
  /* Default font weight */
  transition: transform 0.3s ease, color 0.3s ease, font-weight 0.1s ease;
  /* Smooth transition for zoom, color, and bold */
}

.Textlink:hover {
  color: #218838;
  ;
  text-decoration: underline;
  color: #218838 !important;
  /* Green color for hover */
  transform: scale(1.05);
  /* Slight zoom effect */
  font-weight: bold;
  /* Make text bold */

}




/* support Form */




form {
  background: #fff;
  padding: 20px;
  width: 100%;
}

.form-group {
  margin-bottom: 15px;
}

.form-control {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
}

.form-control:focus {
  border-color: #5f9ea0;
  outline: none;
}

.submit-btn {
  background-color: #5f9ea0;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;

}

.submit-btn:hover {
  background-color: #4682b4;
}

#thankYouMessage {
  text-align: center;
  color: green;
  font-size: 18px;
}


/* menuu dropdown */

/* Style the dropdown menu */
.menu li.dropdown {
  position: relative;
}

.menu li.dropdown .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  border: 1px solid #ccc;
  z-index: 1000;
}

.menu li.dropdown:hover .dropdown-menu {
  display: block;
}

.menu li.dropdown .dropdown-menu li {
  list-style: none;
  padding: 10px;
  width: 200px;
}

.menu li.dropdown .dropdown-menu li a {
  text-decoration: none;
  color: #333;
}

.menu li.dropdown .dropdown-menu li a:hover {
  background-color: #f0f0f0;
}

/* Style the down arrow */
.book-now {
  display: inline-flex;
  align-items: center;
}

.down-arrow {
  margin-left: 5px;
  font-size: 12px;
  /* Adjust size */
  color: black;
  /* Black color */
}


/* Optional: Hover effect for down arrow when hovering over "Book Now" */
.menu li.dropdown:hover .down-arrow {
  transform: rotate(180deg);
  /* Rotate arrow on hover */
  transition: transform 0.3s ease;
}

/* Mobile view: Hide the dropdown menu initially */
@media (max-width: 768px) {
  .menu li.dropdown .dropdown-menu {
    display: none;
  }

  /* Show dropdown on click (Mobile) */
  .menu li.dropdown.active .dropdown-menu {
    display: block;
  }
}

/* Common button styling */
button {
  color: black !important;
  font-size: 16px !important;
  font-weight: bold !important;
  padding: 10px 20px;
  border: none !important;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

/* Next button (WEBSB) */
button.WEBSB {
  background-color: #4D90FE !important;
}

button.WEBSB:hover {
  background-color: #357ABD !important;
  color: white !important;
  transform: scale(1.1);
}

/* Add More button (WEBAM) */
button.WEBAM {
  background-color: #28A745 !important;
  float: right;
}

button.WEBAM:hover {
  background-color: #218838 !important;
  color: white !important;
  transform: scale(1.1);
}

/* Remove button (WEBRB) */
button.WEBRB {
  background-color: #DC3545 !important;
  float: right;
}

button.WEBRB:hover {
  background-color: #C82333 !important;
  color: white !important;
  transform: scale(1.1);
}

/* Submit button (WEBNB) */
button.WEBNB {
  background-color: #FFC107 !important;
  float: right;
}

button.WEBNB:hover {
  background-color: #E0A800 !important;
  color: white !important;
  transform: scale(1.1);
}


/* Radio Buttons Container */
/* Radio Buttons Container */
.webrB {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 12px !important;
  /* Slightly reduced gap */
  align-items: center !important;
}

/* Hide Default Radio Button */
.webrB input[type="radio"] {
  display: none !important;
}

/* Custom Radio Button */
.webrB label {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 12px 18px !important;
  border: 3px solid #333 !important;
  /* Darker border */
  border-radius: 8px !important;
  background-color: #f8f9fa !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  color: #007bff !important;
  cursor: pointer !important;
  transition: all 0.3s ease-in-out !important;
}

/* Hover & Focus Effect */
.webrB label:hover,
.webrB input[type="radio"]:focus+label {
  background-color: #7ae29b !important;
  color: rgb(6, 6, 6) !important;
  border-color: #27ae60 !important;
}

/* Active (Checked) State */
.webrB input[type="radio"]:checked+label {
  background-color: #b5507b !important;
  color: white !important;
  border-color: #e0a927 !important;
  font-weight: 700 !important;
  box-shadow: 0 0 12px rgba(203, 64, 216, 0.7) !important;
  /* Brighter active effect */
  transform: scale(1.05) !important;
  /* Slight pop effect */
}

/* Mobile View */
@media screen and (max-width: 768px) {
  .webrB {
    flex-direction: column !important;
    align-items: center !important;
    gap: 6px !important;
    /* Reduced gap */
  }

  .webrB label {
    width: 100% !important;
    text-align: center !important;
    font-size: 14px !important;
    padding: 10px 14px !important;
  }
}

/* why coose us 08 Aug 2025 */

/* Unique Why Choose Us Section */
/* Unique Why Choose Us Section */
.unique-why-choose-us {
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--bg-start, #f0f4f8), var(--bg-end, #e0e7ee));
  font-family: 'Poppins', sans-serif;
}

.unique-why-choose-us .container {
  max-width: 1200px;
  margin: 0 auto;
}

.unique-why-choose-us .section-title {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  color: var(--heading-color, #2c3e50);
  margin-bottom: 60px;
  position: relative;
  letter-spacing: 1px;
}

.unique-why-choose-us .section-title::after {
  content: '';
  width: 80px;
  height: 4px;
  background: var(--primary-color, #3498db);
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.unique-why-choose-us .card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.unique-why-choose-us .card {
  background: #ffffff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex: 1 1 250px;
  max-width: 300px;
  cursor: pointer;
}

.unique-why-choose-us .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.unique-why-choose-us .card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--heading-color, #34495e);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.unique-why-choose-us .card-title i {
  color: var(--primary-color, #3498db);
  font-size: 1.5rem;
}

.unique-why-choose-us .card-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-color, #7f8c8d);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.unique-why-choose-us .card {
  opacity: 0;
  /* Initially hidden */
}

/* Animation delay for staggered effect */
.unique-why-choose-us .card:nth-child(1) {
  transition-delay: 0.1s;
}

.unique-why-choose-us .card:nth-child(2) {
  transition-delay: 0.2s;
}

.unique-why-choose-us .card:nth-child(3) {
  transition-delay: 0.3s;
}

.unique-why-choose-us .card:nth-child(4) {
  transition-delay: 0.4s;
}

/* Responsive Design */
@media (max-width: 768px) {
  .unique-why-choose-us .section-title {
    font-size: 2.2rem;
    margin-bottom: 40px;
  }

  .unique-why-choose-us .card {
    max-width: 100%;
  }

  .unique-why-choose-us .card-title {
    font-size: 1.1rem;
  }

  .unique-why-choose-us .card-title i {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .unique-why-choose-us {
    padding: 60px 15px;
  }

  .unique-why-choose-us .section-title {
    font-size: 1.8rem;
  }

  .unique-why-choose-us .card-title {
    font-size: 1rem;
  }

  .unique-why-choose-us .card-title i {
    font-size: 1.2rem;
  }

  .unique-why-choose-us .card-text {
    font-size: 0.9rem;
  }
}

/* sample 
 */

/* Sample Ticket Section Styles */
/* Sample Ticket Section Styles */
.sample-ticket-section {
  padding: 80px 20px;
  background-color: var(--bg-end, #eaf1f7);
  font-family: 'Poppins', sans-serif;
  color: var(--text-color, #333);
}

.sample-ticket-container {
  max-width: 1200px;
  /* Increased max-width for the two-column layout */
  margin: 0 auto;
  text-align: center;
}

.sample-ticket-content-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  background-color: #ffffff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  min-height: 45vh;
  /* Sets the minimum height to 40% of the viewport height */
}

.ticket-image-column {
  flex: 1;
  max-width: 50%;
  display: flex;
  justify-content: center;
}

.ticket-info-column {
  flex: 1;
  max-width: 50%;
  text-align: left;
}

.ticket-image {
  width: 100%;
  height: auto;
  max-height: calc(40vh - 80px);
  /* Adjusts image height based on the section's height */
  object-fit: contain;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}

.sample-ticket-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--heading-color, #1a1a1a);
  margin-bottom: 15px;
}

.sample-ticket-description {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: var(--text-color, #333);
}

.download-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: var(--primary-color, #4a90e2);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.download-button:hover {
  background: var(--secondary-color, #50e3c2);
  transform: translateY(-3px);
}

.download-button i {
  font-size: 1.2rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .sample-ticket-content-wrapper {
    flex-direction: column;
    text-align: center;
    min-height: auto;
    padding: 30px;
  }

  .ticket-image-column,
  .ticket-info-column {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .ticket-info-column {
    text-align: center;
  }

  .ticket-image {
    max-height: 50vh;
  }
}

@media (max-width: 768px) {
  .sample-ticket-title {
    font-size: 2rem;
  }

  .sample-ticket-description {
    font-size: 0.9rem;
  }

  .ticket-image {
    max-height: 40vh;
  }
}

@media (max-width: 480px) {
  .sample-ticket-section {
    padding: 40px 15px;
  }

  .sample-ticket-title {
    font-size: 1.5rem;
  }

  .download-button {
    padding: 10px 20px;
    font-size: 1rem;
  }
}